home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Python / import.c < prev    next >
Text File  |  1996-05-18  |  21KB  |  1,024 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Module definition and import implementation */
  26.  
  27. #include "allobjects.h"
  28.  
  29. #include "node.h"
  30. #include "token.h"
  31. #include "graminit.h"
  32. #include "import.h"
  33. #include "errcode.h"
  34. #include "sysmodule.h"
  35. #include "bltinmodule.h"
  36. #include "pythonrun.h"
  37. #include "marshal.h"
  38. #include "compile.h"
  39. #include "eval.h"
  40. #include "osdefs.h"
  41. #include "importdl.h"
  42. #ifdef macintosh
  43. /* 'argument' is a grammar symbol, but also used in some mac header files */
  44. #undef argument
  45. #include "macglue.h"
  46. #endif
  47.  
  48. extern int verbose; /* Defined in pythonrun.c */
  49.  
  50. extern long getmtime(); /* In getmtime.c */
  51.  
  52. /* Magic word to reject .pyc files generated by other Python versions */
  53. /* Change for each incompatible change */
  54. /* The value of CR and LF is incorporated so if you ever read or write
  55.    a .pyc file in text mode the magic number will be wrong; also, the
  56.    Apple MPW compiler swaps their values, botching string constants */
  57. /* XXX Perhaps the magic number should be frozen and a version field
  58.    added to the .pyc file header? */
  59. #define MAGIC (11913 | ((long)'\r'<<16) | ((long)'\n'<<24))
  60.  
  61. object *import_modules; /* This becomes sys.modules */
  62.  
  63.  
  64. /* Initialize things */
  65.  
  66. void
  67. initimport()
  68. {
  69.     if (import_modules != NULL)
  70.         fatal("duplicate initimport() call");
  71.     if ((import_modules = newdictobject()) == NULL)
  72.         fatal("no mem for dictionary of modules");
  73. }
  74.  
  75.  
  76. /* Un-initialize things, as good as we can */
  77.  
  78. void
  79. doneimport()
  80. {
  81.     if (import_modules != NULL) {
  82.         object *tmp = import_modules;
  83.         import_modules = NULL;
  84.         /* This deletes all modules from sys.modules.
  85.            When a module is deallocated, it in turn clears its dictionary,
  86.            thus hopefully breaking any circular references between modules
  87.            and between a module's dictionary and its functions.
  88.            Note that "import" will fail while we are cleaning up.
  89.            */
  90.         mappingclear(tmp);
  91.         DECREF(tmp);
  92.     }
  93. }
  94.  
  95.  
  96. /* Helper for pythonrun.c -- return magic number */
  97.  
  98. long
  99. get_pyc_magic()
  100. {
  101.     return MAGIC;
  102. }
  103.  
  104.  
  105. /* Helper for sysmodule.c -- return modules dictionary */
  106.  
  107. object *
  108. get_modules()
  109. {
  110.     return import_modules;
  111. }
  112.  
  113.  
  114. /* Get the module object corresponding to a module name.
  115.    First check the modules dictionary if there's one there,
  116.    if not, create a new one and insert in in the modules dictionary.
  117.    Because the former action is most common, THIS DOES NOT RETURN A
  118.    'NEW' REFERENCE! */
  119.  
  120. object *
  121. add_module(name)
  122.     char *name;
  123. {
  124.     object *m;
  125.  
  126.     if (import_modules == NULL) {
  127.         err_setstr(SystemError, "sys.modules has been deleted");
  128.         return NULL;
  129.     }
  130.     if ((m = dictlookup(import_modules, name)) != NULL &&
  131.         is_moduleobject(m))
  132.         return m;
  133.     m = newmoduleobject(name);
  134.     if (m == NULL)
  135.         return NULL;
  136.     if (dictinsert(import_modules, name, m) != 0) {
  137.         DECREF(m);
  138.         return NULL;
  139.     }
  140.     DECREF(m); /* Yes, it still exists, in modules! */
  141.  
  142.     return m;
  143. }
  144.  
  145.  
  146. /* Execute a code object in a module and return the module object
  147.    WITH INCREMENTED REFERENCE COUNT */
  148.  
  149. object *
  150. exec_code_module(name, co)
  151.     char *name;
  152.     object *co;
  153. {
  154.     object *m, *d, *v;
  155.  
  156.     m = add_module(name);
  157.     if (m == NULL)
  158.         return NULL;
  159.     d = getmoduledict(m);
  160.     if (dictlookup(d, "__builtins__") == NULL) {
  161.         if (dictinsert(d, "__builtins__", getbuiltins()) != 0)
  162.             return NULL;
  163.     }
  164.     /* Remember the filename as the __file__ attribute */
  165.     if (dictinsert(d, "__file__", ((codeobject *)co)->co_filename) != 0)
  166.         err_clear(); /* Not important enough to report */
  167.     v = eval_code((codeobject *)co, d, d); /* XXX owner? */
  168.     if (v == NULL)
  169.         return NULL;
  170.     DECREF(v);
  171.     INCREF(m);
  172.  
  173.     return m;
  174. }
  175.  
  176.  
  177. /* Given a pathname for a Python source file, fill a buffer with the
  178.    pathname for the corresponding compiled file.  Return the pathname
  179.    for the compiled file, or NULL if there's no space in the buffer.
  180.    Doesn't set an exception. */
  181.  
  182. static char *
  183. make_compiled_pathname(pathname, buf, buflen)
  184.     char *pathname;
  185.     char *buf;
  186.     int buflen;
  187. {
  188.     int len;
  189.  
  190.     len = strlen(pathname);
  191.     if (len+2 > buflen)
  192.         return NULL;
  193.     strcpy(buf, pathname);
  194.     strcpy(buf+len, "c");
  195.  
  196.     return buf;
  197. }
  198.  
  199.  
  200. /* Given a pathname for a Python source file, its time of last
  201.    modification, and a pathname for a compiled file, check whether the
  202.    compiled file represents the same version of the source.  If so,
  203.    return a FILE pointer for the compiled file, positioned just after
  204.    the header; if not, return NULL.
  205.    Doesn't set an exception. */
  206.  
  207. static FILE *
  208. check_compiled_module(pathname, mtime, cpathname)
  209.     char *pathname;
  210.     long mtime;
  211.     char *cpathname;
  212. {
  213.     FILE *fp;
  214.     long magic;
  215.     long pyc_mtime;
  216.  
  217.     fp = fopen(cpathname, "rb");
  218.     if (fp == NULL)
  219.         return NULL;
  220.     magic = rd_long(fp);
  221.     if (magic != MAGIC) {
  222.         if (verbose)
  223.             fprintf(stderr, "# %s has bad magic\n", cpathname);
  224.         fclose(fp);
  225.         return NULL;
  226.     }
  227.     pyc_mtime = rd_long(fp);
  228.     if (pyc_mtime != mtime) {
  229.         if (verbose)
  230.             fprintf(stderr, "# %s has bad mtime\n", cpathname);
  231.         fclose(fp);
  232.         return NULL;
  233.     }
  234.     if (verbose)
  235.         fprintf(stderr, "# %s matches %s\n", cpathname, pathname);
  236.     return fp;
  237. }
  238.  
  239.  
  240. /* Read a code object from a file and check it for validity */
  241.  
  242. static codeobject *
  243. read_compiled_module(fp)
  244.     FILE *fp;
  245. {
  246.     object *co;
  247.  
  248.     co = rd_object(fp);
  249.     /* Ugly: rd_object() may return NULL with or without error */
  250.     if (co == NULL || !is_codeobject(co)) {
  251.         if (!err_occurred())
  252.             err_setstr(ImportError,
  253.                    "Non-code object in .pyc file");
  254.         XDECREF(co);
  255.         return NULL;
  256.     }
  257.     return (codeobject *)co;
  258. }
  259.  
  260.  
  261. /* Load a module from a compiled file, execute it, and return its
  262.    module object WITH INCREMENTED REFERENCE COUNT */
  263.  
  264. static object *
  265. load_compiled_module(name, cpathname, fp)
  266.     char *name;
  267.     char *cpathname;
  268.     FILE *fp;
  269. {
  270.     long magic;
  271.     codeobject *co;
  272.     object *m;
  273.  
  274.     magic = rd_long(fp);
  275.     if (magic != MAGIC) {
  276.         err_setstr(ImportError, "Bad magic number in .pyc file");
  277.         return NULL;
  278.     }
  279.     (void) rd_long(fp);
  280.     co = read_compiled_module(fp);
  281.     if (co == NULL)
  282.         return NULL;
  283.     if (verbose)
  284.         fprintf(stderr, "import %s # precompiled from %s\n",
  285.             name, cpathname);
  286.     m = exec_code_module(name, (object *)co);
  287.     DECREF(co);
  288.  
  289.     return m;
  290. }
  291.  
  292. /* Parse a source file and return the corresponding code object */
  293.  
  294. static codeobject *
  295. parse_source_module(pathname, fp)
  296.     char *pathname;
  297.     FILE *fp;
  298. {
  299.     codeobject *co;
  300.     node *n;
  301.  
  302.     n = parse_file(fp, pathname, file_input);
  303.     if (n == NULL)
  304.         return NULL;
  305.     co = compile(n, pathname);
  306.     freetree(n);
  307.  
  308.     return co;
  309. }
  310.  
  311.  
  312. /* Write a compiled module to a file, placing the time of last
  313.    modification of its source into the header.
  314.    Errors are ignored, if a write error occurs an attempt is made to
  315.    remove the file. */
  316.  
  317. static void
  318. write_compiled_module(co, cpathname, mtime)
  319.     codeobject *co;
  320.     char *cpathname;
  321.     long mtime;
  322. {
  323.     FILE *fp;
  324.  
  325.     fp = fopen(cpathname, "wb");
  326.     if (fp == NULL) {
  327.         if (verbose)
  328.             fprintf(stderr,
  329.                 "# can't create %s\n", cpathname);
  330.         return;
  331.     }
  332.     wr_long(MAGIC, fp);
  333.     /* First write a 0 for mtime */
  334.     wr_long(0L, fp);
  335.     wr_object((object *)co, fp);
  336.     if (ferror(fp)) {
  337.         if (verbose)
  338.             fprintf(stderr, "# can't write %s\n", cpathname);
  339.         /* Don't keep partial file */
  340.         fclose(fp);
  341.         (void) unlink(cpathname);
  342.         return;
  343.     }
  344.     /* Now write the true mtime */
  345.     fseek(fp, 4L, 0);
  346.     wr_long(mtime, fp);
  347.     fflush(fp);
  348.     fclose(fp);
  349.     if (verbose)
  350.         fprintf(stderr, "# wrote %s\n", cpathname);
  351. #ifdef macintosh
  352.     setfiletype(cpathname, 'Pyth', 'PYC ');
  353. #endif
  354. }
  355.  
  356.  
  357. /* Load a source module from a given file and return its module
  358.    object WITH INCREMENTED REFERENCE COUNT.  If there's a matching
  359.    byte-compiled file, use that instead. */
  360.  
  361. static object *
  362. load_source_module(name, pathname, fp)
  363.     char *name;
  364.     char *pathname;
  365.     FILE *fp;
  366. {
  367.     long mtime;
  368.     FILE *fpc;
  369.     char buf[MAXPATHLEN+1];
  370.     char *cpathname;
  371.     codeobject *co;
  372.     object *m;
  373.  
  374.     mtime = getmtime(pathname);
  375.     cpathname = make_compiled_pathname(pathname, buf, MAXPATHLEN+1);
  376.     if (cpathname != NULL &&
  377.         (fpc = check_compiled_module(pathname, mtime, cpathname))) {
  378.         co = read_compiled_module(fpc);
  379.         fclose(fpc);
  380.         if (co == NULL)
  381.             return NULL;
  382.         if (verbose)
  383.             fprintf(stderr, "import %s # precompiled from %s\n",
  384.                 name, cpathname);
  385.     }
  386.     else {
  387.         co = parse_source_module(pathname, fp);
  388.         if (co == NULL)
  389.             return NULL;
  390.         if (verbose)
  391.             fprintf(stderr, "import %s # from %s\n",
  392.                 name, pathname);
  393.         write_compiled_module(co, cpathname, mtime);
  394.     }
  395.     m = exec_code_module(name, (object *)co);
  396.     DECREF(co);
  397.  
  398.     return m;
  399. }
  400.  
  401.  
  402. /* Search the path (default sys.path) for a module.  Return the
  403.    corresponding filedescr struct, and (via return arguments) the
  404.    pathname and an open file.  Return NULL if the module is not found. */
  405.  
  406. static struct filedescr *
  407. find_module(name, path, buf, buflen, p_fp)
  408.     char *name;
  409.     object *path;
  410.     /* Output parameters: */
  411.     char *buf;
  412.     int buflen;
  413.     FILE **p_fp;
  414. {
  415.     int i, npath, len, namelen;
  416.     struct filedescr *fdp;
  417.     FILE *fp = NULL;
  418.  
  419.     if (path == NULL)
  420.         path = sysget("path");
  421.     if (path == NULL || !is_listobject(path)) {
  422.         err_setstr(ImportError,
  423.                "sys.path must be a list of directory names");
  424.         return NULL;
  425.     }
  426.     npath = getlistsize(path);
  427.     namelen = strlen(name);
  428.     for (i = 0; i < npath; i++) {
  429.         object *v = getlistitem(path, i);
  430.         if (!is_stringobject(v))
  431.             continue;
  432.         len = getstringsize(v);
  433.         if (len + 2 + namelen + import_maxsuffixsize >= buflen)
  434.             continue; /* Too long */
  435.         strcpy(buf, getstringvalue(v));
  436.         if (strlen(buf) != len)
  437.             continue; /* v contains '\0' */
  438. #ifdef macintosh
  439.         if ( PyMac_FindResourceModule(name, buf) ) {
  440.             static struct filedescr resfiledescr = { "", "", PY_RESOURCE};
  441.             
  442.             return &resfiledescr;
  443.         }
  444. #endif
  445.         if (len > 0 && buf[len-1] != SEP)
  446.             buf[len++] = SEP;
  447.         strcpy(buf+len, name);
  448.         len += namelen;
  449.         for (fdp = import_filetab; fdp->suffix != NULL; fdp++) {
  450.             strcpy(buf+len, fdp->suffix);
  451.             if (verbose > 1)
  452.                 fprintf(stderr, "# trying %s\n", buf);
  453.             fp = fopen(buf, fdp->mode);
  454.             if (fp != NULL)
  455.                 break;
  456.         }
  457.         if (fp != NULL)
  458.             break;
  459.     }
  460.     if (fp == NULL) {
  461.         char buf[256];
  462.         sprintf(buf, "No module named %.200s", name);
  463.         err_setstr(ImportError, buf);
  464.         return NULL;
  465.     }
  466.  
  467.     *p_fp = fp;
  468.     return fdp;
  469. }
  470.  
  471.  
  472. /* Load an external module using the default search path and return
  473.    its module object WITH INCREMENTED REFERENCE COUNT */
  474.  
  475. static object *
  476. load_module(name)
  477.     char *name;
  478. {
  479.     char buf[MAXPATHLEN+1];
  480.     struct filedescr *fdp;
  481.     FILE *fp = NULL;
  482.     object *m;
  483.  
  484.     fdp = find_module(name, (object *)NULL, buf, MAXPATHLEN+1, &fp);
  485.     if (fdp == NULL)
  486.         return NULL;
  487.  
  488.     switch (fdp->type) {
  489.  
  490.     case PY_SOURCE:
  491.         m = load_source_module(name, buf, fp);
  492.         break;
  493.  
  494.     case PY_COMPILED:
  495.         m = load_compiled_module(name, buf, fp);
  496.         break;
  497.  
  498.     case C_EXTENSION:
  499.         m = load_dynamic_module(name, buf, fp);
  500.         break;
  501.  
  502. #ifdef macintosh
  503.     case PY_RESOURCE:
  504.         m = PyMac_LoadResourceModule(name, buf);
  505.         break;
  506. #endif
  507.  
  508.     default:
  509.         err_setstr(SystemError,
  510.                "find_module returned unexpected result");
  511.         m = NULL;
  512.  
  513.     }
  514.     if ( fp )
  515.         fclose(fp);
  516.  
  517.     return m;
  518. }
  519.  
  520.  
  521. /* Initialize a built-in module.
  522.    Return 1 for succes, 0 if the module is not found, and -1 with
  523.    an exception set if the initialization failed. */
  524.  
  525. static int
  526. init_builtin(name)
  527.     char *name;
  528. {
  529.     int i;
  530.     for (i = 0; inittab[i].name != NULL; i++) {
  531.         if (strcmp(name, inittab[i].name) == 0) {
  532.             if (inittab[i].initfunc == NULL) {
  533.                 err_setstr(ImportError,
  534.                        "Cannot re-init internal module");
  535.                 return -1;
  536.             }
  537.             if (verbose)
  538.                 fprintf(stderr, "import %s # builtin\n",
  539.                     name);
  540.             (*inittab[i].initfunc)();
  541.             if (err_occurred())
  542.                 return -1;
  543.             return 1;
  544.         }
  545.     }
  546.     return 0;
  547. }
  548.  
  549.  
  550. /* Frozen modules */
  551.  
  552. extern struct frozen {
  553.     char *name;
  554.     char *code;
  555.     int size;
  556. } frozen_modules[];
  557.  
  558. static struct frozen *
  559. find_frozen(name)
  560.     char *name;
  561. {
  562.     struct frozen *p;
  563.  
  564.     for (p = frozen_modules; ; p++) {
  565.         if (p->name == NULL)
  566.             return NULL;
  567.         if (strcmp(p->name, name) == 0)
  568.             break;
  569.     }
  570.     return p;
  571. }
  572.  
  573. static object *
  574. get_frozen_object(name)
  575.     char *name;
  576. {
  577.     struct frozen *p = find_frozen(name);
  578.  
  579.     if (p == NULL) {
  580.         err_setstr(ImportError, "No such frozen object");
  581.         return NULL;
  582.     }
  583.     return rds_object(p->code, p->size);
  584. }
  585.  
  586. /* Initialize a frozen module.
  587.    Return 1 for succes, 0 if the module is not found, and -1 with
  588.    an exception set if the initialization failed.
  589.    This function is also used from frozenmain.c */
  590.  
  591. int
  592. init_frozen(name)
  593.     char *name;
  594. {
  595.     struct frozen *p = find_frozen(name);
  596.     object *co;
  597.     object *m;
  598.  
  599.     if (p == NULL)
  600.         return 0;
  601.     if (verbose)
  602.         fprintf(stderr, "import %s # frozen\n", name);
  603.     co = rds_object(p->code, p->size);
  604.     if (co == NULL)
  605.         return -1;
  606.     if (!is_codeobject(co)) {
  607.         DECREF(co);
  608.         err_setstr(TypeError, "frozen object is not a code object");
  609.         return -1;
  610.     }
  611.     m = exec_code_module(name, co);
  612.     DECREF(co);
  613.     if (m == NULL)
  614.         return -1;
  615.     DECREF(m);
  616.     return 1;
  617. }
  618.  
  619.  
  620. /* Import a module, either built-in, frozen, or external, and return
  621.    its module object WITH INCREMENTED REFERENCE COUNT */
  622.  
  623. object *
  624. import_module(name)
  625.     char *name;
  626. {
  627.     object *m;
  628.  
  629.     if (import_modules == NULL) {
  630.         err_setstr(SystemError, "sys.modules has been deleted");
  631.         return NULL;
  632.     }
  633.     if ((m = dictlookup(import_modules, name)) != NULL) {
  634.         INCREF(m);
  635.     }
  636.     else {
  637.         int i;
  638.         if ((i = init_builtin(name)) || (i = init_frozen(name))) {
  639.             if (i < 0)
  640.                 return NULL;
  641.             if ((m = dictlookup(import_modules, name)) == NULL) {
  642.                 if (err_occurred() == NULL)
  643.                     err_setstr(SystemError,
  644.                  "built-in module not initialized properly");
  645.             }
  646.             else
  647.                 INCREF(m);
  648.         }
  649.         else
  650.             m = load_module(name);
  651.     }
  652.  
  653.     return m;
  654. }
  655.  
  656.  
  657. /* Re-import a module of any kind and return its module object, WITH
  658.    INCREMENTED REFERENCE COUNT */
  659.  
  660. object *
  661. reload_module(m)
  662.     object *m;
  663. {
  664.     char *name;
  665.     int i;
  666.  
  667.     if (m == NULL || !is_moduleobject(m)) {
  668.         err_setstr(TypeError, "reload() argument must be module");
  669.         return NULL;
  670.     }
  671.     name = getmodulename(m);
  672.     if (name == NULL)
  673.         return NULL;
  674.     if (import_modules == NULL) {
  675.         err_setstr(SystemError, "sys.modules has been deleted");
  676.         return NULL;
  677.     }
  678.     if (m != dictlookup(import_modules, name)) {
  679.         err_setstr(ImportError, "reload() module not in sys.modules");
  680.         return NULL;
  681.     }
  682.     /* Check for built-in and frozen modules */
  683.     if ((i = init_builtin(name)) || (i = init_frozen(name))) {
  684.         if (i < 0)
  685.             return NULL;
  686.         INCREF(m);
  687.     }
  688.     else
  689.         m = load_module(name);
  690.     return m;
  691. }
  692.  
  693.  
  694. /* Module 'imp' provides Python access to the primitives used for
  695.    importing modules.
  696. */
  697.  
  698. static object *
  699. imp_get_magic(self, args)
  700.     object *self;
  701.     object *args;
  702. {
  703.     char buf[4];
  704.  
  705.     if (!newgetargs(args, ""))
  706.         return NULL;
  707.     buf[0] = (MAGIC >>  0) & 0xff;
  708.     buf[1] = (MAGIC >>  8) & 0xff;
  709.     buf[2] = (MAGIC >> 16) & 0xff;
  710.     buf[3] = (MAGIC >> 24) & 0xff;
  711.  
  712.     return newsizedstringobject(buf, 4);
  713. }
  714.  
  715. static object *
  716. imp_get_suffixes(self, args)
  717.     object *self;
  718.     object *args;
  719. {
  720.     object *list;
  721.     struct filedescr *fdp;
  722.  
  723.     if (!newgetargs(args, ""))
  724.         return NULL;
  725.     list = newlistobject(0);
  726.     if (list == NULL)
  727.         return NULL;
  728.     for (fdp = import_filetab; fdp->suffix != NULL; fdp++) {
  729.         object *item = mkvalue("ssi",
  730.                        fdp->suffix, fdp->mode, fdp->type);
  731.         if (item == NULL) {
  732.             DECREF(list);
  733.             return NULL;
  734.         }
  735.         if (addlistitem(list, item) < 0) {
  736.             DECREF(list);
  737.             DECREF(item);
  738.             return NULL;
  739.         }
  740.         DECREF(item);
  741.     }
  742.     return list;
  743. }
  744.  
  745. static object *
  746. imp_find_module(self, args)
  747.     object *self;
  748.     object *args;
  749. {
  750.     extern int fclose PROTO((FILE *));
  751.     char *name;
  752.     object *path = NULL;
  753.     object *fob, *ret;
  754.     struct filedescr *fdp;
  755.     char pathname[MAXPATHLEN+1];
  756.     FILE *fp;
  757.     if (!newgetargs(args, "s|O!", &name, &Listtype, &path))
  758.         return NULL;
  759.     fdp = find_module(name, path, pathname, MAXPATHLEN+1, &fp);
  760.     if (fdp == NULL)
  761.         return NULL;
  762.     fob = newopenfileobject(fp, pathname, fdp->mode, fclose);
  763.     if (fob == NULL) {
  764.         fclose(fp);
  765.         return NULL;
  766.     }
  767.     ret = mkvalue("Os(ssi)",
  768.               fob, pathname, fdp->suffix, fdp->mode, fdp->type);
  769.     DECREF(fob);
  770.     return ret;
  771. }
  772.  
  773. static object *
  774. imp_init_builtin(self, args)
  775.     object *self;
  776.     object *args;
  777. {
  778.     char *name;
  779.     int ret;
  780.     object *m;
  781.     if (!newgetargs(args, "s", &name))
  782.         return NULL;
  783.     ret = init_builtin(name);
  784.     if (ret < 0)
  785.         return NULL;
  786.     if (ret == 0) {
  787.         INCREF(None);
  788.         return None;
  789.     }
  790.     m = add_module(name);
  791.     XINCREF(m);
  792.     return m;
  793. }
  794.  
  795. static object *
  796. imp_init_frozen(self, args)
  797.     object *self;
  798.     object *args;
  799. {
  800.     char *name;
  801.     int ret;
  802.     object *m;
  803.     if (!newgetargs(args, "s", &name))
  804.         return NULL;
  805.     ret = init_frozen(name);
  806.     if (ret < 0)
  807.         return NULL;
  808.     if (ret == 0) {
  809.         INCREF(None);
  810.         return None;
  811.     }
  812.     m = add_module(name);
  813.     XINCREF(m);
  814.     return m;
  815. }
  816.  
  817. static object *
  818. imp_get_frozen_object(self, args)
  819.     object *self;
  820.     object *args;
  821. {
  822.     char *name;
  823.  
  824.     if (!newgetargs(args, "s", &name))
  825.         return NULL;
  826.     return get_frozen_object(name);
  827. }
  828.  
  829. static object *
  830. imp_is_builtin(self, args)
  831.     object *self;
  832.     object *args;
  833. {
  834.     int i;
  835.     char *name;
  836.     if (!newgetargs(args, "s", &name))
  837.         return NULL;
  838.     for (i = 0; inittab[i].name != NULL; i++) {
  839.         if (strcmp(name, inittab[i].name) == 0) {
  840.             if (inittab[i].initfunc == NULL)
  841.                 return newintobject(-1);
  842.             else
  843.                 return newintobject(1);
  844.         }
  845.     }
  846.     return newintobject(0);
  847. }
  848.  
  849. static object *
  850. imp_is_frozen(self, args)
  851.     object *self;
  852.     object *args;
  853. {
  854.     struct frozen *p;
  855.     char *name;
  856.     if (!newgetargs(args, "s", &name))
  857.         return NULL;
  858.     for (p = frozen_modules; ; p++) {
  859.         if (p->name == NULL)
  860.             break;
  861.         if (strcmp(p->name, name) == 0)
  862.             return newintobject(1);
  863.     }
  864.     return newintobject(0);
  865. }
  866.  
  867. static FILE *
  868. get_file(pathname, fob, mode)
  869.     char *pathname;
  870.     object *fob;
  871.     char *mode;
  872. {
  873.     FILE *fp;
  874.     if (fob == NULL) {
  875.         fp = fopen(pathname, mode);
  876.         if (fp == NULL)
  877.             err_errno(IOError);
  878.     }
  879.     else {
  880.         fp = getfilefile(fob);
  881.         if (fp == NULL)
  882.             err_setstr(ValueError, "bad/closed file object");
  883.     }
  884.     return fp;
  885. }
  886.  
  887. static object *
  888. imp_load_compiled(self, args)
  889.     object *self;
  890.     object *args;
  891. {
  892.     char *name;
  893.     char *pathname;
  894.     object *fob = NULL;
  895.     object *m;
  896.     FILE *fp;
  897.     if (!newgetargs(args, "ssO!", &name, &pathname, &Filetype, &fob))
  898.         return NULL;
  899.     fp = get_file(pathname, fob, "rb");
  900.     if (fp == NULL)
  901.         return NULL;
  902.     m = load_compiled_module(name, pathname, fp);
  903.     return m;
  904. }
  905.  
  906. static object *
  907. imp_load_dynamic(self, args)
  908.     object *self;
  909.     object *args;
  910. {
  911.     char *name;
  912.     char *pathname;
  913.     object *fob = NULL;
  914.     object *m;
  915.     FILE *fp = NULL;
  916.     if (!newgetargs(args, "ss|O!", &name, &pathname, &Filetype, &fob))
  917.         return NULL;
  918.     if (fob)
  919.         fp = get_file(pathname, fob, "r");
  920.     m = load_dynamic_module(name, pathname, fp);
  921.     return m;
  922. }
  923.  
  924. static object *
  925. imp_load_source(self, args)
  926.     object *self;
  927.     object *args;
  928. {
  929.     char *name;
  930.     char *pathname;
  931.     object *fob = NULL;
  932.     object *m;
  933.     FILE *fp;
  934.     if (!newgetargs(args, "ssO!", &name, &pathname, &Filetype, &fob))
  935.         return NULL;
  936.     fp = get_file(pathname, fob, "r");
  937.     if (fp == NULL)
  938.         return NULL;
  939.     m = load_source_module(name, pathname, fp);
  940.     return m;
  941. }
  942.  
  943. #ifdef macintosh
  944. static object *
  945. imp_load_resource(self, args)
  946.     object *self;
  947.     object *args;
  948. {
  949.     char *name;
  950.     char *pathname;
  951.     object *m;
  952.  
  953.     if (!newgetargs(args, "ss", &name, &pathname))
  954.         return NULL;
  955.     m = PyMac_LoadResourceModule(name, pathname);
  956.     return m;
  957. }
  958. #endif /* macintosh */
  959.  
  960. static object *
  961. imp_new_module(self, args)
  962.     object *self;
  963.     object *args;
  964. {
  965.     char *name;
  966.     if (!newgetargs(args, "s", &name))
  967.         return NULL;
  968.     return newmoduleobject(name);
  969. }
  970.  
  971. static struct methodlist imp_methods[] = {
  972.     {"get_frozen_object",    imp_get_frozen_object,    1},
  973.     {"get_magic",        imp_get_magic,        1},
  974.     {"get_suffixes",    imp_get_suffixes,    1},
  975.     {"find_module",        imp_find_module,    1},
  976.     {"init_builtin",    imp_init_builtin,    1},
  977.     {"init_frozen",        imp_init_frozen,    1},
  978.     {"is_builtin",        imp_is_builtin,        1},
  979.     {"is_frozen",        imp_is_frozen,        1},
  980.     {"load_compiled",    imp_load_compiled,    1},
  981.     {"load_dynamic",    imp_load_dynamic,    1},
  982.     {"load_source",        imp_load_source,    1},
  983.     {"new_module",        imp_new_module,        1},
  984. #ifdef macintosh
  985.     {"load_resource",    imp_load_resource,    1},
  986. #endif
  987.     {NULL,            NULL}        /* sentinel */
  988. };
  989.  
  990. void
  991. initimp()
  992. {
  993.     object *m, *d, *v;
  994.  
  995.     m = initmodule("imp", imp_methods);
  996.     d = getmoduledict(m);
  997.  
  998.     v = newintobject(SEARCH_ERROR);
  999.     dictinsert(d, "SEARCH_ERROR", v);
  1000.     XDECREF(v);
  1001.  
  1002.     v = newintobject(PY_SOURCE);
  1003.     dictinsert(d, "PY_SOURCE", v);
  1004.     XDECREF(v);
  1005.  
  1006.     v = newintobject(PY_COMPILED);
  1007.     dictinsert(d, "PY_COMPILED", v);
  1008.     XDECREF(v);
  1009.  
  1010.     v = newintobject(C_EXTENSION);
  1011.     dictinsert(d, "C_EXTENSION", v);
  1012.     XDECREF(v);
  1013.  
  1014. #ifdef macintosh
  1015.     v = newintobject(PY_RESOURCE);
  1016.     dictinsert(d, "PY_RESOURCE", v);
  1017.     XDECREF(v);
  1018. #endif
  1019.  
  1020.  
  1021.     if (err_occurred())
  1022.         fatal("imp module initialization failed");
  1023. }
  1024.